home *** CD-ROM | disk | FTP | other *** search
/ Internet Info 1994 March / Internet Info CD-ROM (Walnut Creek) (March 1994).iso / networking / ip / ka9q / alpha.arc / MAKEFILE < prev    next >
Text File  |  1988-07-26  |  7KB  |  176 lines

  1. #
  2. #    Makefile for KA9Q TCP/IP package for PC clones with Aztec C
  3. #
  4. # switches:
  5. #    define the ones you want in the CFLAGS definition...
  6. #
  7. #    TRACE        - turn on tracing/debugging code
  8. #
  9. #    AMIGA        - include Amiga specific code
  10. #    MSDOS        - include Messy-Dos specific code
  11. #    UNIX        - Use UNIX file format conventions
  12. #    CPM        - Use CP/M file format conventions
  13.  
  14. #
  15. # CFLAGS for typical IBM-PC installation
  16. #
  17. CFLAGS=    -DMSDOS +LC
  18. # Assembler flags
  19. AFLAGS= -DMODEL=1
  20. all:    net.exe
  21.         
  22. #
  23. # CFLAGS for typical Amiga installation
  24. #
  25. #CFLAGS= -DTRACE -DAMIGA=1 +L +C +D +Inet.includes
  26. #all:    net.amiga
  27.  
  28. .c.o:
  29.     cc $(CFLAGS) -o $@ $*.c
  30.  
  31. .asm.o:
  32.     as $(AFLAGS) -o $@ $*.asm
  33.  
  34. NETOBJS= telnet.o tnserv.o smisc.o \
  35.     ftpserv.o ftpcli.o ftp.o smtpserv.o smtpcli.o \
  36.     tcpcmd.o tcpuser.o tcptimer.o tcpout.o tcpin.o tcpsubr.o \
  37.     udpcmd.o udp.o \
  38.     ipcmd.o ip.o iproute.o \
  39.     icmpcmd.o icmp.o \
  40.     arpcmd.o arp.o \
  41.     ax25cmd.o ax25user.o ax25.o ax25subr.o lapbtime.o lapb.o \
  42.     slip.o kiss.o \
  43.     nrcmd.o nrs.o nr3.o nrsubr.o \
  44.     iface.o timer.o ttydriv.o cmdparse.o mbuf.o alloc.o netuser.o \
  45.     misc.o pathname.o audit.o files.o icmpmsg.o
  46.  
  47. NETDUMP = trace.o enetdump.o \
  48.     ax25dump.o arpdump.o ipdump.o icmpdump.o udpdump.o tcpdump.o
  49.  
  50. AOBJS= ax25cmd.o ax25user.o ax25.o ax25subr.o lapbtime.o lapb.o ax25dump.o \
  51.     slip.o kiss.o \
  52.     arpcmd.o arp.o \
  53.     ipcmd.o ip.o iproute.o lcsum.o \
  54.     icmpcmd.o icmp.o \
  55.     udpcmd.o udp.o \
  56.     tcpcmd.o tcpuser.o tcptimer.o tcpout.o tcpin.o tcpsubr.o \
  57.     ftpserv.o ftpcli.o ftp.o smtpserv.o smtpcli.o \
  58.     telnet.o tnserv.o smisc.o \
  59.     trace.o \
  60.     arpdump.o ipdump.o icmpdump.o udpdump.o tcpdump.o \
  61.     timer.o ttydriv.o cmdparse.o mbuf.o netuser.o \
  62.     misc.o pathname.o files.o icmpmsg.o
  63.  
  64. PCOBJS= pc.o dirutil.o eccmd.o ec.o ecvec.o pktdrvr.o pkvec.o enet.o \
  65.     pc100.o pc100vec.o hapn.o \
  66.     hapnvec.o 8250.o asyvec.o pcgen.o eagle.o eaglevec.o 8530.o
  67.  
  68. AMOBJS=amiga.o amiga_util.o dir.o
  69.  
  70. HFILES= amiga.h arp.h ax25.h cmdparse.h config.h dir.h \
  71.     ftp.h global.h icmp.h iface.h internet.h  ip.h kiss.h lapb.h \
  72.     mbuf.h netuser.h session.h slip.h smtp.h tcp.h telnet.h \
  73.     timer.h trace.h udp.h
  74.  
  75. net.amiga:    x.o $(AOBJS) $(AMOBJS) $(NETDUMP) main.o version.o session.o
  76.     ln -w -o net.amiga main.o version.o $(AOBJS) $(AMOBJS) $(NETDUMP) -lcl32
  77.  
  78. net.exe:  pc.lib net.lib dump.lib makefile main.o version.o session.o
  79.     ln -t -o net.exe main.o version.o session.o net.lib pc.lib dump.lib -lclc
  80.  
  81. objects: $(NETOBJS) $(PCOBJS)
  82.     
  83. x.o:    $(HFILES)
  84.     cc +C +L +D -DAMIGA +Hnet.includes x.c
  85.  
  86. net.lib: $(NETOBJS)
  87.     lb net.lib $(NETOBJS)
  88.  
  89. dump.lib: $(NETDUMP)
  90.     lb dump.lib $(NETDUMP)
  91.  
  92. libka9q.a: $(NETOBJS)
  93.     ar rv libka9q.a $(NETOBJS)
  94.     ranlib libka9q.a
  95.  
  96. pc.lib: $(PCOBJS)
  97.     lb pc.lib $(PCOBJS)
  98.  
  99. clean:    
  100.     del *.lib
  101.     del *.o
  102.     del *.exe
  103.     del *.sym
  104.  
  105. 8530.o: 8530.c global.h 8530.h
  106. arp.o: arp.c global.h mbuf.h timer.h iface.h enet.h ax25.h arp.h
  107. arpcmd.o: arpcmd.c global.h mbuf.h timer.h enet.h ax25.h arp.h cmdparse.h
  108. arpdump.o: arpdump.c global.h mbuf.h timer.h arp.h
  109. 8250.o: 8250.c global.h asy.h 8250.h iface.h
  110. ax25.o: ax25.c global.h mbuf.h iface.h timer.h arp.h slip.h ax25.h lapb.h
  111. ax25cmd.o: ax25cmd.c global.h mbuf.h ax25.h timer.h iface.h lapb.h cmdparse.h session.h
  112. ax25dump.o: ax25dump.c global.h mbuf.h ax25.h timer.h lapb.h trace.h
  113. ax25subr.o: ax25subr.c global.h mbuf.h timer.h ax25.h lapb.h
  114. ax25user.o: ax25user.c global.h mbuf.h timer.h ax25.h lapb.h
  115. cmdparse.o: cmdparse.c global.h trace.h cmdparse.h
  116. eagle.o: eagle.c global.h mbuf.h iface.h eagle.h 8530.h ax25.h
  117.     cc $(CFLAGS) -E300 eagle.c
  118. ec.o: ec.c global.h mbuf.h enet.h ec.h iface.h timer.h arp.h trace.h
  119. eccmd.o: eccmd.c global.h mbuf.h ec.h
  120. enet.o: enet.c global.h mbuf.h enet.h
  121. enetdump.o: enetdump.c global.h mbuf.h enet.h trace.h
  122. files.o: files.c
  123. ftp.o: ftp.c global.h mbuf.h netuser.h timer.h tcp.h ftp.h session.h
  124. ftpcli.o: ftpcli.c global.h mbuf.h netuser.h icmp.h timer.h tcp.h ftp.h session.h cmdparse.h
  125. ftpserv.o: ftpserv.c global.h mbuf.h netuser.h timer.h tcp.h ftp.h
  126. hapn.o: hapn.c global.h mbuf.h iface.h hapn.h ax25.h trace.h
  127. icmp.o: icmp.c global.h mbuf.h internet.h timer.h iface.h ip.h icmp.h
  128. icmpcmd.o: icmpcmd.c global.h icmp.h mbuf.h netuser.h internet.h timer.h ping.h
  129. icmpdump.o: icmpdump.c global.h mbuf.h internet.h icmp.h trace.h
  130. icmpmsg.o: icmpmsg.c global.h
  131. iface.o: iface.c iface.h
  132. ip.o: ip.c global.h mbuf.h timer.h internet.h iface.h ip.h icmp.h
  133. ipcmd.o: ipcmd.c global.h mbuf.h internet.h timer.h netuser.h iface.h ip.h cmdparse.h
  134. ipdump.o: ipdump.c global.h mbuf.h internet.h timer.h iface.h ip.h trace.h netuser.h
  135. iproute.o: iproute.c global.h mbuf.h internet.h timer.h netuser.h ip.h icmp.h iface.h trace.h
  136. kiss.o: kiss.c global.h mbuf.h iface.h kiss.h
  137. lapb.o: lapb.c global.h mbuf.h timer.h ax25.h lapb.h
  138. lapbtime.o: lapbtime.c global.h mbuf.h ax25.h timer.h lapb.h
  139. lcsum.o: lcsum.c global.h
  140. # This next line is for the PC
  141. main.o: main.c config.h global.h mbuf.h netuser.h timer.h icmp.h iface.h ip.h tcp.h ftp.h telnet.h session.h cmdparse.h asy.h trace.h remote.h
  142. # and this is for the others
  143. #main.o: main.c config.h global.h mbuf.h netuser.h timer.h icmp.h iface.h ip.h tcp.h ftp.h telnet.h session.h cmdparse.h trace.h
  144. mbuf.o: mbuf.c global.h mbuf.h
  145. netuser.o: netuser.c global.h netuser.h
  146. nr3.o: nr3.c global.h mbuf.h iface.h timer.h arp.h slip.h ax25.h netrom.h lapb.h
  147. nrcmd.o: nrcmd.c global.h mbuf.h ax25.h netrom.h timer.h iface.h lapb.h cmdparse.h
  148. nrs.o: nrs.c global.h mbuf.h iface.h ax25.h nrs.h asy.h trace.h
  149. nrsubr.o: nrsubr.c global.h mbuf.h timer.h ax25.h netrom.h lapb.h
  150. pc.o: pc.c global.h mbuf.h internet.h iface.h cmdparse.h
  151. pc100.o: pc100.c global.h mbuf.h iface.h pc100.h 8530.h ax25.h trace.h
  152. pktdrvr.o: pktdrvr.c global.h mbuf.h enet.h iface.h ec.h timer.h arp.h trace.h regs.h pktdrvr.h
  153. session.o: session.c config.h global.h mbuf.h netuser.h timer.h tcp.h ax25.h lapb.h ftp.h telnet.h session.h
  154. # This next line is for the PC
  155. slip.o: slip.c global.h mbuf.h iface.h ax25.h slip.h asy.h trace.h
  156. # and this is for the others
  157. #slip.o: slip.c global.h mbuf.h iface.h ax25.h slip.h trace.h
  158. smisc.o: smisc.c global.h mbuf.h netuser.h timer.h tcp.h remote.h
  159. smtpcli.o: smtpcli.c global.h netuser.h mbuf.h timer.h tcp.h smtp.h trace.h
  160. smtpserv.o: smtpserv.c global.h mbuf.h netuser.h timer.h tcp.h smtp.h
  161. tcpcmd.o: tcpcmd.c global.h timer.h mbuf.h netuser.h internet.h tcp.h
  162. tcpdump.o: tcpdump.c global.h mbuf.h netuser.h internet.h timer.h tcp.h trace.h
  163. tcpin.o: tcpin.c global.h timer.h mbuf.h netuser.h internet.h tcp.h icmp.h iface.h ip.h
  164. tcpout.o: tcpout.c global.h timer.h mbuf.h netuser.h internet.h tcp.h
  165. tcpsubr.o: tcpsubr.c global.h timer.h mbuf.h netuser.h internet.h tcp.h
  166. tcptimer.o: tcptimer.c global.h timer.h mbuf.h netuser.h internet.h ip.h tcp.h
  167. tcpuser.o: tcpuser.c global.h timer.h mbuf.h netuser.h internet.h tcp.h
  168. telnet.o: telnet.c global.h mbuf.h timer.h internet.h icmp.h netuser.h tcp.h telnet.h session.h
  169. tnserv.o: tnserv.c global.h mbuf.h timer.h internet.h icmp.h netuser.h tcp.h telnet.h session.h
  170. trace.o: global.h mbuf.h iface.h trace.h
  171. timer.o: timer.c global.h timer.h
  172. udp.o: udp.c global.h mbuf.h netuser.h udp.h internet.h
  173. udpcmd.o: udpcmd.c global.h mbuf.h netuser.h udp.h internet.h
  174. udpdump.o: udpdump.c global.h mbuf.h netuser.h internet.h udp.h
  175. version.o: version.c
  176.